home *** CD-ROM | disk | FTP | other *** search
/ JCSM Shareware Collection 1993 November / JCSM Shareware Collection - 1993-11.iso / cl760 / garfforj.lzh / GRF.BAT < prev    next >
DOS Batch File  |  1990-05-18  |  354b  |  12 lines

  1. ECHO OFF
  2. REM grf.bat : Execute program GRAPH.EXE from data file GRAPH.???
  3. REM Type grf followed by data file suffix.   eg.  grf 001
  4. If not exist graph.%1 GOTO QUIT1
  5. ECHO ...............................................................................
  6. graph <graph.%1 >prn 
  7. Goto QUIT
  8. :QUIT1
  9. ECHO ... Data file graph.%1 not found.
  10. :QUIT
  11. ECHO ON
  12.